home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_01_02 / 1n02014b < prev    next >
Text File  |  1990-07-08  |  694b  |  18 lines

  1.         
  2.         
  3. ==============================================================================
  4.     Listing 3. Host type definitions.
  5. ==============================================================================
  6.         
  7. /*--------------------------------------------------------------------------*/
  8. /*  Define integral data types                                              */
  9. /*--------------------------------------------------------------------------*/
  10.  typedef unsigned char   uchar;
  11. typedef unsigned short  ushort;
  12. typedef unsigned long   ulong;
  13. typedef unsigned long   PTR;
  14. typedef uchar far       *HPTR;
  15. ==============================================================================
  16.         
  17.  
  18.